chore(Foundation) : correct spelling (#3750)

This commit is contained in:
haorui wang 2022-08-14 20:39:03 +08:00 committed by GitHub
parent 46d5d58bc8
commit 22d2865de2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -36,7 +36,7 @@ class AccessExpireCache: public AbstractCache<TKey, TValue, AccessExpireStrategy
/// Entries expire when they are not accessed with get() during this time period. Each access resets /// Entries expire when they are not accessed with get() during this time period. Each access resets
/// the start time for expiration. /// the start time for expiration.
/// Be careful when using an AccessExpireCache. A cache is often used /// Be careful when using an AccessExpireCache. A cache is often used
/// like cache.has(x) followed by cache.get x). Note that it could happen /// like cache.has(x) followed by cache.get(x). Note that it could happen
/// that the "has" call works, then the current execution thread gets descheduled, time passes, /// that the "has" call works, then the current execution thread gets descheduled, time passes,
/// the entry gets invalid, thus leading to an empty SharedPtr being returned /// the entry gets invalid, thus leading to an empty SharedPtr being returned
/// when "get" is invoked. /// when "get" is invoked.

View File

@ -1,5 +1,5 @@
// //
// UnufferedStreamBuf.h // UnbufferedStreamBuf.h
// //
// Library: Foundation // Library: Foundation
// Package: Streams // Package: Streams