aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeandro Gabriel <45115495+VelocityIsNotSpeed@users.noreply.github.com>2019-06-24 10:48:46 -0300
committerAhmad Fatoum <ahmad@a3f.at>2019-06-24 16:06:02 +0200
commita4e307ed965d2bb64f915c604e8a9ea2c003cf48 (patch)
tree736a9de7631891d354e9607b19cd4704a80cc0bc
parent65a21ab416ec5f149968bae52257b3ed86a57c2e (diff)
downloadraylib-a4e307ed965d2bb64f915c604e8a9ea2c003cf48.tar.gz
raylib-a4e307ed965d2bb64f915c604e8a9ea2c003cf48.zip
Fix typo in comment (onlyl -> only)
-rw-r--r--src/core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core.c b/src/core.c
index 00647ed9..ec8f97f8 100644
--- a/src/core.c
+++ b/src/core.c
@@ -2005,7 +2005,7 @@ int StorageLoadValue(int position)
}
// Open URL with default system browser (if available)
-// NOTE: This function is onlyl safe to use if you control the URL given.
+// NOTE: This function is only safe to use if you control the URL given.
// A user could craft a malicious string performing another action.
// Only call this function yourself not with user input or make sure to check the string yourself.
// CHECK: https://github.com/raysan5/raylib/issues/686