Skip to content

Commit 1fc9928

Browse files
committed
Fixing attack vs. attach
1 parent a2b5cc1 commit 1fc9928

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

Chapter 4/Facade.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ var Westeros;
1111
Fleet.prototype.resupply = function () {
1212
};
1313

14-
Fleet.prototype.attach = function (destination) {
14+
Fleet.prototype.attack = function (destination) {
1515
//attack a city
1616
};
1717
return Fleet;

Chapter 4/Facade.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,9 @@ module Westeros.Transportation{
3737
}
3838

3939
module Azure.Settings{
40-
public interface SettingSaver{
40+
export interface SettingSaver{
4141
Save(settings: Settings);
4242
Retrieve():Settings;
4343
}
44+
export interface Settings{}
4445
}

0 commit comments

Comments
 (0)