Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2021-08-26 05:27:14 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-08-26 05:36:58 +0300
commitafcd06e1e11b1166deb55b0ce05b777706369028 (patch)
treeb7ed1cb6f581edf697e35db6a7d67bfc37b7b008 /source/blender/blenfont/intern
parentff85ac300983bb1f887c071f58b47092682e165c (diff)
Cleanup: spelling in comments
Diffstat (limited to 'source/blender/blenfont/intern')
-rw-r--r--source/blender/blenfont/intern/blf_dir.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/blenfont/intern/blf_dir.c b/source/blender/blenfont/intern/blf_dir.c
index 9520e971148..55c02b34f3d 100644
--- a/source/blender/blenfont/intern/blf_dir.c
+++ b/source/blender/blenfont/intern/blf_dir.c
@@ -172,12 +172,12 @@ char *blf_dir_metrics_search(const char *filename)
s[1] = 'f';
s[2] = 'm';
- /* first check .afm */
+ /* First check `.afm`. */
if (BLI_exists(mfile)) {
return mfile;
}
- /* and now check .pfm */
+ /* And now check `.pfm`. */
s[0] = 'p';
if (BLI_exists(mfile)) {