From 02bde57f74433c4568b36226284dd42327fd9e3a Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Fri, 6 Oct 2017 00:26:22 -0700 Subject: [PATCH] Clean up some comments --- include/AL/alure2.h | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/include/AL/alure2.h b/include/AL/alure2.h index 0b75343..a4eb7cc 100644 --- a/include/AL/alure2.h +++ b/include/AL/alure2.h @@ -630,10 +630,9 @@ public: /** * Creates and caches a Buffer using the given name. The name may alias an - * audio file, but it must not currently exist in the buffer cache. The - * returned buffer is normal in all other respects; getBuffer and - * getBufferAsync can (re-)retrieve it and removeBuffer must be used to - * remove it from the cache. + * audio file, but it must not currently exist in the buffer cache. As with + * other cached buffers, removeBuffer must be used to remove it from the + * cache. */ Buffer createBufferFrom(const String &name, SharedPtr decoder); @@ -655,8 +654,8 @@ public: */ void removeBuffer(const String &name); /** - * Deletes the given cached buffer instance. The buffer must not be in use - * by a Source. + * Deletes the given cached buffer. The buffer must not be in use by a + * Source. */ void removeBuffer(Buffer buffer); -- 2.11.4.GIT