We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1071f1b commit 1e719cfCopy full SHA for 1e719cf
guides/hack/21-XHP/16-extending.md
@@ -387,7 +387,7 @@ use namespace Facebook\XHP\Core as x;
387
final xhp class ui_get_status extends x\element {
388
389
protected async function renderAsync(): Awaitable<x\node> {
390
- $ch = \curl_init('https://status.fb.com/graph-api');
+ $ch = \curl_init('https://metastatus.com/graph-api');
391
\curl_setopt($ch, \CURLOPT_USERAGENT, 'hhvm/user-documentation example');
392
$status = await \HH\Asio\curl_exec($ch);
393
return <x:frag>Status is: {$status}</x:frag>;
0 commit comments