Sfoglia il codice sorgente

docs/sphinx: Fix statement typo for bfree()

Memory is not allocated by bfree()
tt2468 3 anni fa
parent
commit
40a2cc0143
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      docs/sphinx/reference-libobs-util-bmem.rst

+ 1 - 1
docs/sphinx/reference-libobs-util-bmem.rst

@@ -26,7 +26,7 @@ Memory Functions
 
 .. function:: void bfree(void *ptr)
 
-   Frees memory allocated with :c:func:`bmalloc()` or :c:func:`bfree()`.
+   Frees memory allocated with :c:func:`bmalloc()`.
 
 ---------------------