Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions jp/02-elm-arch/01-introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ module App exposing (..)
import Html exposing (Html, div, text, program)


-- MODEL
-- モデル


type alias Model =
Expand All @@ -33,15 +33,15 @@ init =



-- MESSAGES
-- メッセージ


type Msg
= NoOp



-- VIEW
-- ビュー


view : Model -> Html Msg
Expand All @@ -62,7 +62,7 @@ update msg model =



-- SUBSCRIPTIONS
-- サブスクリプション(購読)


subscriptions : Model -> Sub Msg
Expand Down
2 changes: 1 addition & 1 deletion jp/02-elm-arch/06-composing.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ type Msg



-- VIEW
-- ビュー


view : Model -> Html Msg
Expand Down
2 changes: 1 addition & 1 deletion jp/02-elm-arch/07-composing-2.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ type Msg



-- VIEW
-- ビュー


view : AppModel -> Html Msg
Expand Down
2 changes: 1 addition & 1 deletion jp/03-subs-cmds/01-subs.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ type Msg



-- VIEW
-- ビュー


view : Model -> Html Msg
Expand Down
2 changes: 1 addition & 1 deletion jp/03-subs-cmds/02-commands.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ type Msg



-- VIEW
-- ビュー


view : Model -> Html Msg
Expand Down