aboutsummaryrefslogtreecommitdiff
path: root/content/blog/2020-08-29-php-auth-flow.org
diff options
context:
space:
mode:
authorChristian Cleberg <[email protected]>2025-11-11 20:56:22 -0600
committerChristian Cleberg <[email protected]>2025-11-11 20:56:22 -0600
commitaf67e996dc93ade1acd4eed47d25da55c0c63b50 (patch)
tree62eb19df535a82bec74ef012fa7fbb0969c54106 /content/blog/2020-08-29-php-auth-flow.org
parent4a48163d5b84faacfb486ecde18b2b7733d21c65 (diff)
downloadcleberg.net-af67e996dc93ade1acd4eed47d25da55c0c63b50.tar.gz
cleberg.net-af67e996dc93ade1acd4eed47d25da55c0c63b50.tar.bz2
cleberg.net-af67e996dc93ade1acd4eed47d25da55c0c63b50.zip
fix grammar in 2020 posts
Diffstat (limited to 'content/blog/2020-08-29-php-auth-flow.org')
-rw-r--r--content/blog/2020-08-29-php-auth-flow.org5
1 files changed, 3 insertions, 2 deletions
diff --git a/content/blog/2020-08-29-php-auth-flow.org b/content/blog/2020-08-29-php-auth-flow.org
index d1ee5ee..0276c9f 100644
--- a/content/blog/2020-08-29-php-auth-flow.org
+++ b/content/blog/2020-08-29-php-auth-flow.org
@@ -7,8 +7,9 @@
When creating websites that will allow users to create accounts, the developer
always needs to consider the proper authentication flow for their app. For
-example, some developers will utilize an API for authentication, some will use
-OAuth, and some may just use their own simple database.
+example, some developers will utilize an application programming interface (API)
+for authentication, some will use OAuth, and some may just use their own simple
+database.
For those using pre-built libraries, authentication may simply be a problem of
copying and pasting the code from their library's documentation. For example,