@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

PhpDoc: Fix two misspelled class references

Summary: Markup is `@{class:foo}`, not `{@class:foo}`.

Test Plan: Look at other PhpDoc comments. Optionally, run `./bin/diviner generate` (I did not).

Reviewers: O1 Blessed Committers, valerio.bozzolan

Reviewed By: O1 Blessed Committers, valerio.bozzolan

Subscribers: tobiaswiese, valerio.bozzolan, Matthew, Cigaryno

Differential Revision: https://we.phorge.it/D26508

+8 -8
+6 -6
resources/celerity/map.php
··· 10 10 'conpherence.pkg.css' => 'beb13d57', 11 11 'conpherence.pkg.js' => '020aebcf', 12 12 'core.pkg.css' => 'f7f31d57', 13 - 'core.pkg.js' => 'dad1a225', 13 + 'core.pkg.js' => 'ebefb82a', 14 14 'dark-console.pkg.js' => '187792c2', 15 15 'differential.pkg.css' => 'abdb4fe9', 16 16 'differential.pkg.js' => '46fcb3af', ··· 205 205 'rsrc/externals/font/lato/lato-regular.ttf' => 'e2e9c398', 206 206 'rsrc/externals/font/lato/lato-regular.woff' => '0b13d332', 207 207 'rsrc/externals/font/lato/lato-regular.woff2' => '8f846797', 208 - 'rsrc/externals/javelin/core/Event.js' => 'c03f2fb4', 208 + 'rsrc/externals/javelin/core/Event.js' => '1dbe260d', 209 209 'rsrc/externals/javelin/core/Stratcom.js' => '0889b835', 210 210 'rsrc/externals/javelin/core/__tests__/event-stop-and-kill.js' => '048472d2', 211 211 'rsrc/externals/javelin/core/__tests__/install.js' => '14a7e671', ··· 660 660 'javelin-diffusion-locate-file-source' => '6c798a10', 661 661 'javelin-dom' => 'e4c7622a', 662 662 'javelin-dynval' => '202a2e85', 663 - 'javelin-event' => 'c03f2fb4', 663 + 'javelin-event' => '1dbe260d', 664 664 'javelin-external-editor-link-engine' => '48a8641f', 665 665 'javelin-fx' => '34450586', 666 666 'javelin-history' => '030b4f7a', ··· 1019 1019 'javelin-mask', 1020 1020 'phabricator-drag-and-drop-file-upload', 1021 1021 ), 1022 + '1dbe260d' => array( 1023 + 'javelin-install', 1024 + ), 1022 1025 '1e413dc9' => array( 1023 1026 'javelin-behavior', 1024 1027 'javelin-dom', ··· 1915 1918 'javelin-behavior', 1916 1919 'javelin-uri', 1917 1920 'phabricator-notification', 1918 - ), 1919 - 'c03f2fb4' => array( 1920 - 'javelin-install', 1921 1921 ), 1922 1922 'c2c500a7' => array( 1923 1923 'javelin-install',
+1 -1
src/applications/files/storage/PhabricatorFile.php
··· 1210 1210 1211 1211 1212 1212 /** 1213 - * Load (or build) the {@class:PhabricatorFile} objects for builtin file 1213 + * Load (or build) the @{class:PhabricatorFile} objects for builtin file 1214 1214 * resources. The builtin mechanism allows files shipped with Phabricator 1215 1215 * to be treated like normal files so that APIs do not need to special case 1216 1216 * things like default images or deleted files.
+1 -1
webroot/rsrc/externals/javelin/core/Event.js
··· 6 6 7 7 /** 8 8 * A generic event, routed by @{class:JX.Stratcom}. All events within Javelin 9 - * are represented by a {@class:JX.Event}, regardless of whether they originate 9 + * are represented by a @{class:JX.Event}, regardless of whether they originate 10 10 * from a native DOM event (like a mouse click) or are custom application 11 11 * events. 12 12 *