소스 검색

docs/sphinx: Fix statement typo for bfree()

Memory is not allocated by bfree()
tt2468 3 년 전
부모
커밋
40a2cc0143
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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()`.
 
 ---------------------