From 15ce071c8bc04b0b2ac07e1c0052308ed0add78f Mon Sep 17 00:00:00 2001 From: Goryudyuma Date: Sat, 16 Sep 2017 05:04:33 +0900 Subject: [PATCH] [JP] Unification of notation --- jp/02-elm-arch/01-introduction.md | 8 ++++---- jp/02-elm-arch/06-composing.md | 2 +- jp/02-elm-arch/07-composing-2.md | 2 +- jp/03-subs-cmds/01-subs.md | 2 +- jp/03-subs-cmds/02-commands.md | 2 +- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/jp/02-elm-arch/01-introduction.md b/jp/02-elm-arch/01-introduction.md index ceb5be5..15a9dc9 100644 --- a/jp/02-elm-arch/01-introduction.md +++ b/jp/02-elm-arch/01-introduction.md @@ -20,7 +20,7 @@ module App exposing (..) import Html exposing (Html, div, text, program) --- MODEL +-- モデル type alias Model = @@ -33,7 +33,7 @@ init = --- MESSAGES +-- メッセージ type Msg @@ -41,7 +41,7 @@ type Msg --- VIEW +-- ビュー view : Model -> Html Msg @@ -62,7 +62,7 @@ update msg model = --- SUBSCRIPTIONS +-- サブスクリプション(購読) subscriptions : Model -> Sub Msg diff --git a/jp/02-elm-arch/06-composing.md b/jp/02-elm-arch/06-composing.md index dd86f60..d0c707e 100644 --- a/jp/02-elm-arch/06-composing.md +++ b/jp/02-elm-arch/06-composing.md @@ -41,7 +41,7 @@ type Msg --- VIEW +-- ビュー view : Model -> Html Msg diff --git a/jp/02-elm-arch/07-composing-2.md b/jp/02-elm-arch/07-composing-2.md index 0d31526..bc7cd00 100644 --- a/jp/02-elm-arch/07-composing-2.md +++ b/jp/02-elm-arch/07-composing-2.md @@ -40,7 +40,7 @@ type Msg --- VIEW +-- ビュー view : AppModel -> Html Msg diff --git a/jp/03-subs-cmds/01-subs.md b/jp/03-subs-cmds/01-subs.md index 4ea9e7c..2f3c4db 100644 --- a/jp/03-subs-cmds/01-subs.md +++ b/jp/03-subs-cmds/01-subs.md @@ -51,7 +51,7 @@ type Msg --- VIEW +-- ビュー view : Model -> Html Msg diff --git a/jp/03-subs-cmds/02-commands.md b/jp/03-subs-cmds/02-commands.md index fb3e456..f779b01 100644 --- a/jp/03-subs-cmds/02-commands.md +++ b/jp/03-subs-cmds/02-commands.md @@ -43,7 +43,7 @@ type Msg --- VIEW +-- ビュー view : Model -> Html Msg