Skip to content

Commit

Permalink
doc: update document.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaywcjlove committed Nov 22, 2022
1 parent 14767b0 commit 7feb28b
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion docs/cs.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ double doubleNum = 99.999;
decimal decimalNum = 99.9999M;
char letter = 'D';
bool @bool = true;
string site = "quickref.me";
string site = "jaywcjlove.github.io";
var num = 999;
var str = "999";
var bo = false;
Expand Down
4 changes: 2 additions & 2 deletions docs/html.md
Original file line number Diff line number Diff line change
Expand Up @@ -855,7 +855,7 @@ meta 标记描述 HTML 文档中的元数据。它解释了关于 HTML 的其他
<meta property="og:type" content="website">
<meta property="og:locale" content="en_CA">
<meta property="og:title" content="HTML cheatsheet">
<meta property="og:url" content="https://quickref.me/html">
<meta property="og:url" content="https://jaywcjlove.github.io/">
<meta property="og:image" content="https://xxx.com/image.jpg">
<meta property="og:site_name" content="Name of your website">
<meta property="og:description" content="Description of this page">
Expand All @@ -869,7 +869,7 @@ Facebook、Instagram、Pinterest、LinkedIn 等使用。
<meta name="twitter:card" content="summary">
<meta name="twitter:site" content="@QuickRef_ME">
<meta name="twitter:title" content="HTML cheatsheet">
<meta name="twitter:url" content="https://quickref.me/html">
<meta name="twitter:url" content="https://jaywcjlove.github.io/">
<meta name="twitter:description" content="Description of this page">
<meta name="twitter:image" content="https://xxx.com/image.jpg">
```
Expand Down
2 changes: 1 addition & 1 deletion docs/java.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ int num = 5;
float floatNum = 5.99f;
char letter = 'D';
boolean bool = true;
String site = "quickref.me";
String site = "jaywcjlove.github.io";
```

### 原始数据类型
Expand Down
4 changes: 2 additions & 2 deletions docs/json.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@ JSON 备忘清单

```json
{
"url": "https://quickref.me",
"msg" : "Hi,\n\"QuickRef.ME\"",
"url": "https://jaywcjlove.github.io",
"msg" : "Hi,\n\"Quick Reference\"",
"intro": "Share quick reference and cheat sheet for developers."
}
```
Expand Down
6 changes: 3 additions & 3 deletions docs/php.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ PHP 备忘清单
```php
<?php // 以 PHP 开放标签开头
echo "Hello World\n";
print("Hello quickref.me");
print("Hello jaywcjlove.github.io");
?>
```

Expand All @@ -38,7 +38,7 @@ $str2 = 'Fine, thanks';
### 字符串 Strings

```php
$url = "quickref.me";
$url = "jaywcjlove.github.io";
echo "I'm learning PHP at $url";
// 连接字符串
echo "I'm learning PHP at " . $url;
Expand Down Expand Up @@ -938,7 +938,7 @@ if (is_null($repo)) {
### 常用表达

```php
$str = "Visit Quickref.me";
$str = "Visit jaywcjlove.github.io";
echo preg_match("/qu/i", $str); # => 1
```

Expand Down
8 changes: 4 additions & 4 deletions docs/python.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Python 备忘单是 [Python 3](https://www.python.org/) 编程语言的单页参

- [Python](https://www.python.org/) _(python.org)_
- [Learn X in Y minutes](https://learnxinyminutes.com/docs/python/) _(learnxinyminutes.com)_
- [Regex in python](./regex.md#python-中的正则表达式) _(quickref.me)_
- [Regex in python](./regex.md#python-中的正则表达式) _(jaywcjlove.github.io)_

### Hello World

Expand Down Expand Up @@ -144,9 +144,9 @@ message += "Part 2."
### f-字符串(Python 3.6+)

```python
>>> website = 'Quickref.ME'
>>> website = 'Quick Reference'
>>> f"Hello, {website}"
"Hello, Quickref.ME"
"Hello, Quick Reference"
>>> num = 10
>>> f'{num} + 10 = {num + 10}'
'10 + 10 = 20'
Expand Down Expand Up @@ -1238,4 +1238,4 @@ finally: # 在所有情况下执行

- [Python](https://www.python.org/) _(python.org)_
- [Learn X in Y minutes](https://learnxinyminutes.com/docs/python/) _(learnxinyminutes.com)_
- [Regex in python](./regex.md#python-中的正则表达式) _(quickref.me)_
- [Regex in python](./regex.md#python-中的正则表达式) _(jaywcjlove.github.io)_

0 comments on commit 7feb28b

Please sign in to comment.