From 37c026a8cae451b543b46d2941a221b8b1bd2c5e Mon Sep 17 00:00:00 2001
From: hank <hank.zhang@proficientcity.com>
Date: Mon, 04 Sep 2017 10:03:43 +0800
Subject: [PATCH] 添加V3.6.5

---
 frameworks/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestDataAttachment.h |   26 +++++++++++++-------------
 1 files changed, 13 insertions(+), 13 deletions(-)

diff --git a/frameworks/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestDataAttachment.h b/frameworks/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestDataAttachment.h
index c179e29..edf0f78 100644
--- a/frameworks/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestDataAttachment.h
+++ b/frameworks/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestDataAttachment.h
@@ -18,34 +18,34 @@
 
 #import <Foundation/Foundation.h>
 
-/*!
- @abstract A container class for data attachments so that additional metadata can be provided about the attachment.
+/**
+  A container class for data attachments so that additional metadata can be provided about the attachment.
  */
 @interface FBSDKGraphRequestDataAttachment : NSObject
 
-/*!
- @abstract Initializes the receiver with the attachment data and metadata.
- @param data The attachment data (retained, not copied)
- @param filename The filename for the attachment
- @param contentType The content type for the attachment
+/**
+  Initializes the receiver with the attachment data and metadata.
+ - Parameter data: The attachment data (retained, not copied)
+ - Parameter filename: The filename for the attachment
+ - Parameter contentType: The content type for the attachment
  */
 - (instancetype)initWithData:(NSData *)data
                     filename:(NSString *)filename
                  contentType:(NSString *)contentType
 NS_DESIGNATED_INITIALIZER;
 
-/*!
- @abstract The content type for the attachment.
+/**
+  The content type for the attachment.
  */
 @property (nonatomic, copy, readonly) NSString *contentType;
 
-/*!
- @abstract The attachment data.
+/**
+  The attachment data.
  */
 @property (nonatomic, strong, readonly) NSData *data;
 
-/*!
- @abstract The filename for the attachment.
+/**
+  The filename for the attachment.
  */
 @property (nonatomic, copy, readonly) NSString *filename;
 

--
Gitblit v1.8.0