Parcourir la source

Iff expanded to "true if ..., false otherwise"

https://github.com/FreshRSS/FreshRSS/pull/1011
https://github.com/FreshRSS/FreshRSS/issues/938
Alexandre Alapetite il y a 10 ans
Parent
commit
2d06b472cd
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      app/Models/Context.php

+ 1 - 1
app/Models/Context.php

@@ -95,7 +95,7 @@ class FreshRSS_Context {
 	}
 
 	/**
-	 * Return true iif the current requests target a feed and not a category or all articles.
+	 * Return true if the current request targets a feed (and not a category or all articles), false otherwise.
 	 */
 	public static function isFeed() {
 		return self::$current_get['feed'] != false;